Socket
Socket
Sign inDemoInstall

lemonadejs

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lemonadejs

Lemonade is a lightweight, micro reactive vanilla javascript library to create quick and reusable JS components without dependencies.


Version published
Weekly downloads
1.5K
increased by0.94%
Maintainers
1
Weekly downloads
 
Created
Source

LemonadeJS: Reactive micro library

Create amazing web-based interfaces with LemonadeJS v2

LemonadeJS is a super lightweight reactive vanilla javascript micro-library (7 KBytes). It aims to help the integration between the JavaScript (controllers) and the HTML (view). It supports two-way binding and integrates natively with jSuites to help to create amazing interfaces quicker.

It would help you deliver reusable components and does not require transpilers, babel, or hundreds of other dependencies. It works just fine in any javascript dev environment. LemonadeJS has a quick learning curve and keeps coding fun and very close to native JS.

  • Make rich and user-friendly web interfaces and applications
  • Handle complicated data inputs with ease and convenience
  • Improve the software user experience
  • Create rich CRUDS and beautiful UI
  • Highly flexible and customizable
  • Lightweight and simple to use

Examples

Node

Build modern applications with lemonadeJS and node.

See this example on codesandbox

import lemonade from "lemonadejs";
import Hello from "./Hello";

export default function App() {
  let self = {};
  self.count = 1;

  let template = `<div>
        <div><Hello /></div>
        <p>You clicked {{self.count}} times</p>
        <button onclick="self.count++;">Click me</button>
    </div>`;

  return lemonade.element(template, self, { Hello });
}

Browser

Simplicity to run in the browser without dependencies, servers, transpilers.

<html>
<body>
<div id="root"></div>
<script src="https://cdn.jsdelivr.net/npm/lemonadejs/dist/lemonade.min.js"></script>
<script>
function Hello() {
    let self = this;
    let template = `<h1>{{self.title}}</h1>`;
    return lemonade.element(template, self);
}

function App() {
    let self = {};
    self.count = 1;
    let template = `<>
      <Hello title="your title" />
      <p>You clicked {{self.count}} times</p>
        <button onclick="self.count++;">Click me</button>
      </>`;
    return lemonade.element(template, self, { Hello });
}
lemonade.render(App, document.getElementById('root'));
</script>
</body>
</html>

Creating a table from an array of objects

import lemonade from "lemonadejs";

export default function Component() {
    let self = {};

    self.rows = [
        { title:'Google', description: 'The alpha search engine...' },
        { title:'Bind', description: 'The microsoft search engine...' },
        { title:'Duckduckgo', description: 'Privacy in the first place...' },
    ];

    // Custom components such as List should always be unique inside a real tag.
    let template = `<table cellpadding="6">
            <thead><tr><th>Title</th><th>Description</th></th></thead>
            <tbody @loop="self.rows">
                <tr><td>{{self.title}}</td><td>{{self.description}}</td></tr>
            </tbody>
        </table>`;

    return lemonade.element(template, self);
}

The event object

<html>
<body>
<div id='root'></div>

<script src="https://cdn.jsdelivr.net/npm/lemonadejs/dist/lemonade.min.js"></script>
<script>
var Component = (function() {
    // Create the self object
    var self = {};
    self.test = function(e) {
        console.log(e);
        e.preventDefault();
    }

    // The property call is added to the observable list when added to the DOM
    var template = `<>
        <input type="button" value="Click test" onclick="self.test(e);"/>
        </>`;

    // Render the template and create the observation
    return lemonade.element(template, self);
});

// Render the LemonadeJS element into the DOM
lemonade.render(Component, document.getElementById('root'));
</script>
</body>
</html>

Enable/disable HTML elements

<html>
<body>
<div id='root'></div>

<script src="https://cdn.jsdelivr.net/npm/lemonadejs/dist/lemonade.min.js"></script>
<script>
var App = (function() {
    let self = {};
    self.disabled= false;

    let template = `<>
            <button onclick="self.disabled = !self.disabled">Toggle</button>
            <input type="text" disabled="{{self.disabled}}" />
            </>`;

    return lemonade.element(template, self);
});

lemonade.render(App, document.getElementById('root'));
</script>
</body>
</html>

Installation

% npm install lemonadejs

License

This software is free to use and it is distributed under the MIT license.

Documentation

Other tools

https://jsuites.net
https://jspreadsheet.com/home
https://bossanova.uk/jspreadsheet

Keywords

FAQs

Package last updated on 27 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc